|
Compounds |
| class | XFcCore |
| | Static core class, contains global functions. More...
|
| struct | XFcExclusiveModeSettings |
| | When application is set to non-exclusive mode, this structure is used to report the visible area of the framebuffer. More...
|
Defines |
| #define | malloc(x) xfcMalloc((x)) |
| #define | calloc(x, y) xfcCalloc((x), (y)) |
| #define | realloc(x, y) xfcRealloc((x), (y)) |
| #define | free(x) xfcFree((x)) |
Functions |
| void XFCDLLEXPORT XFCIMPORT * | xfcMalloc (size_t aSize) |
| | Allocates specified amount of memory in bytes.
|
| void XFCDLLEXPORT XFCIMPORT * | xfcCalloc (size_t aNum, size_t aSize) |
| | Allocates specified amount of memory in bytes and clears the allocated memory.
|
| void XFCDLLEXPORT XFCIMPORT * | xfcRealloc (void *aPtr, size_t aSize) |
| | Reallocates a memory block.
|
| void XFCDLLEXPORT XFCIMPORT | xfcFree (void *aPtr) |
| | Frees a memory block.
|
| void *__cdecl | operator new (size_t aSize) |
| void *__cdecl | operator new (size_t aSize, const UINT32 aFlags) |
| void *__cdecl | operator new[] (size_t aSize) |
| void *__cdecl | operator new[] (size_t aSize, const UINT32 aFlags) |
| void __cdecl | operator delete (void *aPtr) |
| void __cdecl | operator delete (void *aPtr, const UINT32 aFlags) |
| void __cdecl | operator delete[] (void *aPtr) |
| void __cdecl | operator delete[] (void *aPtr, const UINT32 aFlags) |